home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 26 / AMIGAplus Sonderheft 26 (2000)(Falke)(DE)(Track 1 of 2)[!].iso / Rexx / Reminder.rexx < prev    next >
OS/2 REXX Batch file  |  1999-03-29  |  278b  |  11 lines

  1. /* REMINDER AREXX SCRIPT v1.0 */
  2.  
  3.     LF= '0a'x
  4.  
  5.     arg eventtext
  6.     if ~show('L','rexxreqtools.library') then
  7.             call addlib("rexxreqtools.library", 0, -30, 0)
  8.  
  9.     call rtezrequest("+ + +  R E M I N D E R  + + +"||LF||""||LF||eventtext, "Okay", , "rt_reqpos = reqpos_centerscr")
  10.  
  11.